home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpbb_detect.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(15779);
  8.  
  9.  script_version("$Revision: 1.1 $");
  10.  name["english"] = "phpBB Detection";
  11.  script_name(english:name["english"]);
  12.  
  13.  desc["english"] = "
  14. This plugin detects if the phpBB bulletin board system is installed
  15. on the remote host and stores its location and version in the KB.
  16.  
  17. See also : http://www.phpbb.org
  18. Risk factor : None";
  19.  
  20.  
  21.  script_description(english:desc["english"]);
  22.  
  23.  summary["english"] = "Check for phpBB version";
  24.  
  25.  script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  30.  
  31.  family["english"] = "CGI abuses";
  32.  script_family(english:family["english"]);
  33.  script_dependencie("http_version.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. # Check starts here
  39.  
  40. include("http_func.inc");
  41. include("http_keepalive.inc");
  42.  
  43. function check(dir)
  44. {
  45.   req = http_get(item:dir + "/index.php", port:port);
  46.   buf = http_keepalive_send_recv(port:port, data:req);
  47.   if(buf == NULL)exit(0);
  48.  
  49.   line = egrep(pattern:"Powered by .*phpBB.*", string:buf);
  50.   if ( line )
  51.       {
  52.         line = chomp(line);
  53.     version = ereg_replace(pattern:".*Powered by.*phpBB</a> ([0-9\.]*)", string:line, replace:"\1");
  54.     if ( version == line ) version = "unknown";
  55.         if ( version )
  56.     {
  57.      if ( dir == "" ) dir = "/";
  58.      set_kb_item(name:"www/" + port + "/phpBB", value:version + " under " + dir);
  59.      security_note( port:port, data:'The remote host is running phpBB ' + version + ' under ' + dir);
  60.     }
  61.    }
  62.  return(0);
  63. }
  64.  
  65. port = get_http_port(default:80);
  66.  
  67. if(!get_port_state(port))exit(0);
  68. if(!can_host_php(port:port))exit(0);
  69.  
  70.  
  71.  
  72. foreach dir (make_list("/phpBB", cgi_dirs()))
  73. {
  74.  check(dir:dir);
  75. }
  76.